home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
developer-tools
/
c-tools
/
vbcc
/
machines
/
amiga68k
/
libsrc
/
amigalib
/
pool.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-06-14
|
357 b
|
20 lines
#include <exec/lists.h>
#include <exec/memory.h>
#include <exec/execbase.h>
#include <clib/exec_protos.h>
/*
** our PRIVATE! memory pool structure
** (_NOT_ compatible with original amiga.lib!)
*/
typedef struct Pool
{
struct MinList PuddleList;
ULONG MemoryFlags;
ULONG PuddleSize;
ULONG ThreshSize;
} POOL;
extern struct ExecBase *SysBase;